.demo{
    padding: 1em 0;
}
.box{
    position: relative;
    perspective: 1000px;
	width:300px;
}
.box .box-img{
    transform: rotateY(0);
    transition: all 0.50s ease-in-out 0s;
}
.box:hover .box-img{
    transform: rotateY(-90deg);
}
.box .box-img img{
    width: 300px;
	 width: 300px;
    height: auto;
}
.box .box-content{
    width: 100%;
    height: 180px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 60px 0px;
    text-align: center;
    background: rgba(0,0,0,0.7);
    transform: rotateY(90deg);
    transition: all 0.50s ease-in-out 0s;
}
.box:hover .box-content{
    transform: rotateY(0);
}
.box .title{
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}
.box .description{
    font-size: 14px;
    line-height: 24px;
	padding:0 20PX;
    color: #fff;
}
.box span{
    font-size: 14px;
  
	padding:0 20PX;
	border:1px #FFFFFF solid;
    color: #fff;
	text-transform:uppercase; 
	height:38px;
	line-height:38px;
}
.box .span:after{
    content: "";
    width: 150px;
    display: block;
   border:1px #FFFFFF solid;
    margin: 10PX auto;
		height:38px;
	line-height:38px;
}

.box .title:after,
.box .description:after{
    content: "";
    width: 250px;
    display: block;
    border-bottom: 1px solid #fff;
    margin: 10PX auto;
}
.box .social-links{
    margin: 0;
    padding: 0;
    list-style: none;
}
.box .social-links li{
    display: inline-block;
    margin: 0 10px;
}
.box .social-links li a{
    font-size: 20px;
    color: #a6a6a6;
}
.box .social-links li a:hover{
    text-decoration: none;
    color: #fff;
}
@media only screen and (max-width: 990px) {
    .box{  margin-bottom:20px; }
}
@media only screen and (max-width: 479px) {
    .box .box-content{ padding: 20px; }
}